home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / lamstex / index / config.sun-gcc.h < prev    next >
C/C++ Source or Header  |  1991-09-06  |  335b  |  15 lines

  1. #define int short
  2. #undef ANSI /* To use old-style K&R functions */
  3. #undef MICROSOFTC
  4. #undef LITTLENDIAN
  5.  
  6. #ifdef ANSI
  7. /* Other things in ANSI C are good, but this is a crock */
  8. #define READ_BINARY "rb"
  9. #define WRITE_BINARY "wb"
  10. #else
  11. /* The good old simple and logical K&R I/O */
  12. #define READ_BINARY "r"
  13. #define WRITE_BINARY "w"
  14. #endif
  15.